
public interface List extends Collection {
	Object get(int index);
	Object set(int index, Object element);
	int indexOf(Object x);
}

